home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / email / parser.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  4KB  |  103 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. '''A parser of RFC 2822 and MIME email messages.'''
  5. __all__ = [
  6.     'Parser',
  7.     'HeaderParser']
  8. import warnings
  9. from cStringIO import StringIO
  10. from email.feedparser import FeedParser
  11. from email.message import Message
  12.  
  13. class Parser:
  14.     
  15.     def __init__(self, *args, **kws):
  16.         """Parser of RFC 2822 and MIME email messages.
  17.  
  18.         Creates an in-memory object tree representing the email message, which
  19.         can then be manipulated and turned over to a Generator to return the
  20.         textual representation of the message.
  21.  
  22.         The string must be formatted as a block of RFC 2822 headers and header
  23.         continuation lines, optionally preceeded by a `Unix-from' header.  The
  24.         header block is terminated either by the end of the string or by a
  25.         blank line.
  26.  
  27.         _class is the class to instantiate for new message objects when they
  28.         must be created.  This class must have a constructor that can take
  29.         zero arguments.  Default is Message.Message.
  30.         """
  31.         if len(args) >= 1:
  32.             if '_class' in kws:
  33.                 raise TypeError("Multiple values for keyword arg '_class'")
  34.             
  35.             kws['_class'] = args[0]
  36.         
  37.         if len(args) == 2:
  38.             if 'strict' in kws:
  39.                 raise TypeError("Multiple values for keyword arg 'strict'")
  40.             
  41.             kws['strict'] = args[1]
  42.         
  43.         if len(args) > 2:
  44.             raise TypeError('Too many arguments')
  45.         
  46.         if '_class' in kws:
  47.             self._class = kws['_class']
  48.             del kws['_class']
  49.         else:
  50.             self._class = Message
  51.         if 'strict' in kws:
  52.             warnings.warn("'strict' argument is deprecated (and ignored)", DeprecationWarning, 2)
  53.             del kws['strict']
  54.         
  55.         if kws:
  56.             raise TypeError('Unexpected keyword arguments')
  57.         
  58.  
  59.     
  60.     def parse(self, fp, headersonly = False):
  61.         '''Create a message structure from the data in a file.
  62.  
  63.         Reads all the data from the file and returns the root of the message
  64.         structure.  Optional headersonly is a flag specifying whether to stop
  65.         parsing after reading the headers or not.  The default is False,
  66.         meaning it parses the entire contents of the file.
  67.         '''
  68.         feedparser = FeedParser(self._class)
  69.         if headersonly:
  70.             feedparser._set_headersonly()
  71.         
  72.         while True:
  73.             data = fp.read(8192)
  74.             if not data:
  75.                 break
  76.             
  77.             feedparser.feed(data)
  78.         return feedparser.close()
  79.  
  80.     
  81.     def parsestr(self, text, headersonly = False):
  82.         '''Create a message structure from a string.
  83.  
  84.         Returns the root of the message structure.  Optional headersonly is a
  85.         flag specifying whether to stop parsing after reading the headers or
  86.         not.  The default is False, meaning it parses the entire contents of
  87.         the file.
  88.         '''
  89.         return self.parse(StringIO(text), headersonly = headersonly)
  90.  
  91.  
  92.  
  93. class HeaderParser(Parser):
  94.     
  95.     def parse(self, fp, headersonly = True):
  96.         return Parser.parse(self, fp, True)
  97.  
  98.     
  99.     def parsestr(self, text, headersonly = True):
  100.         return Parser.parsestr(self, text, True)
  101.  
  102.  
  103.